home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / test / doctest_aliases.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  527b  |  17 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4.  
  5. class TwoNames:
  6.     '''f() and g() are two names for the same method'''
  7.     
  8.     def f(self):
  9.         '''
  10.         >>> print TwoNames().f()
  11.         f
  12.         '''
  13.         return 'f'
  14.         g = f
  15.  
  16.  
  17.